home *** CD-ROM | disk | FTP | other *** search
/ Online Today 2000 January / Onto0100.iso / pc / Browser / Web-Fix / Web-Fix Installer.exe / Main / WF_Cursors.k < prev    next >
Encoding:
Text File  |  1999-09-08  |  575 b   |  24 lines

  1. module oWF_CursorList is cCursorList
  2. has
  3.     InitializeRuntime(theRuntime)
  4.     do
  5.         oWF_Main.ArrowCursor := oArrowCursor;
  6.         oWF_Main.ClosedHandCursor := oClosedHandCursor;
  7.         oWF_Main.DontCursor := oDontCursor;
  8.         oWF_Main.FingerCursor := oFingerCursor;
  9.         oWF_Main.OpenHandCursor := oOpenHandCursor;
  10.         oWF_Main.PlusCursor := oPlusCursor;
  11.         oWF_Main.QueryCursor := oQueryCursor;
  12.         oWF_Main.TargetCursor := oTargetCursor;
  13.     end;
  14. with
  15.     URL is "./Cursors.pic";
  16.     Items is [
  17.         oSizeVerticalCursor,
  18.         oSizeHorizontalCursor,
  19.         oSizeTopDownCursor,
  20.         oSizeDownTopCursor,
  21.         oMoveCursor
  22.     ];
  23. end;
  24.